home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 #2 / Ham Radio 2000 - Volume 2.iso / HAMV2 / TCP_IP / TNOS230S / KBRAW.S < prev    next >
Encoding:
Text File  |  1996-09-01  |  317 b   |  18 lines

  1. /* for MSDOS only! */
  2.  
  3. /* Poll keyboard through BIOS. Returns ascii char in low byte, scan code */
  4. /* in high byte. If low byte == 0, character is "extended ascii" */
  5.  
  6.     .global    _kbraw
  7. _kbraw:
  8.  
  9.     movb    $1,%ah
  10.     int    $0x16
  11.     je    L0
  12.     movb    $0,%ah
  13.     int    $0x16
  14.     andl    $0x0000ffff,%eax
  15.     ret
  16. L0:    xorl    %eax,%eax
  17.     ret
  18.